Framework (
A-Z)
Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Name |
/* */ (multiline comment) |
Examples |
digitalWrite(8, HIGH);
delay(100);
digitalWrite(8, LOW);
|
Description |
Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the function of your program. Multiline comments are used for large text descriptions of code or to comment out chunks of code while debugging applications. Comments are ignored by the compiler |
Syntax |
|
Parameters |
comment |
any sequence of characters |
|
Usage |
Application |
Related |
// (comment)
|
Updated on July 07, 2011 11:08:41pm PDT